home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / chkbku40.arc / EXAMPLE2.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-08-08  |  756 b   |  28 lines

  1. :=====================================================
  2. :                 EXAMPLE2.BAT
  3. :
  4. :    This is the type of batch file that could be
  5. : used when the 'Execute Batch File' initiation 
  6. : option is selected.
  7. :
  8. : The 'Command' field would contain:
  9. :
  10. : For weekly backup:     example2 weekly.cmd
  11. : For monthly backup:    example2 monthly.cmd
  12. :=====================================================
  13. echo off
  14. cls
  15. :
  16. : Change directory to where your backup utility
  17. : resides...
  18. cd c:\backup
  19. :
  20. : Then we run the backup utility with the
  21. : necessary parameter.
  22. backup @%1
  23. :
  24. : Then we change back to the Check Backup directory
  25. : so Check Backup can do its clean up and updating
  26. : of the backup dates in the configuration file.
  27. cd c:\chkbkup
  28.